home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000376_news@columbia.edu_Mon Jul 17 12:54:06 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01593
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 17 Jul 1995 08:54:11 -0400
  3. Received: by apakabar.cc.columbia.edu id AA16013
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 17 Jul 1995 08:54:10 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Help ... MSKERMIT 3.14 problem when link modem
  9. Date: 17 Jul 1995 12:54:06 GMT
  10. Organization: Columbia University
  11. Lines: 27
  12. Message-Id: <3udmhe$fkb@apakabar.cc.columbia.edu>
  13. References: <3u9720$3r7@mars.mahidol.ac.th>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3u9720$3r7@mars.mahidol.ac.th>,
  18. Adithep Intamas - CC <ccait@mucc.mahidol.ac.th> wrote:
  19. : I've used modem to connect the unix system using MS-KERMIT 3.14.  After 
  20. : disconnect from unix and when modem no carrier, I press Alt-X ... it's 
  21. : still in kermit prompt.  Could anyone tell me how to exit kermit immediately 
  22. : when I press Alt-X?  In my MSKERMIT.INI file consisted of these phases
  23. :     :RE_CONNECT
  24. :      connect                      <--- (1)
  25. :      set input timeout proceed
  26. :      clear
  27. :      wait 5 \cd
  28. :      if failure goto end_connection
  29. :        .                          <--- (2)
  30. :     :end_connection
  31. :      exit
  32. I do not understand the situation well enough to be certain what the
  33. problem is.  If the CONNECT command marked with arrow (1) is the one you
  34. escaping back from with Alt-x, then your script will reach the END_CONNECTION
  35. label and EXIT if the CD signal is coming in to the serial port.  If it is
  36. not, then the commands marked with arrow (2) are executed, but you did not
  37. show what those are.  If you are executing this script and Kermit returns
  38. to the prompt when you press Alt-x, then I suspect the missing code (2) is
  39. responsible.
  40.  
  41. - Frank